home *** CD-ROM | disk | FTP | other *** search
- ' +----------------------------------------------------------------------+
- ' | |
- ' | PBClone Copyright (c) 1990-1993 Thomas G. Hanlin III |
- ' | |
- ' +----------------------------------------------------------------------+
-
- SUB ReverseI (Array() AS INTEGER, Elements%)
- FOR tmp% = 1 TO Elements% \ 2
- SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
- NEXT
- END SUB
-